home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / mailers / harvey45.zip / HARVEY.DOC < prev    next >
Text File  |  1992-09-13  |  8KB  |  156 lines

  1. ────────────────────────────────────────────────────────────────────────
  2. Harvey's Robot v4.43                         Harvey Parisien - 1:249/114
  3. ────────────────────────────────────────────────────────────────────────
  4.  
  5. USE: H datafile
  6.  
  7. Optional Uses:
  8.  
  9. USE: H !  will produce SAMPLE.$$$ which is a data file template.
  10.           Just use an editor, modify it, and save it as your datafile
  11.           with any legal filename.
  12.  
  13. USE: H datafile {,message.ext}  where the second command line parameter
  14.           delimited with a , will be used in place of a variable in your
  15.           datafile under one or more destinations.  In the sample.$$$
  16.           file the terminology of "message.ext" is explained.  If you
  17.           replace message.ext with the variable &FILE it will look for
  18.           the message.ext on the command line.  If &FILE is not found,
  19.           then the system will assume the message.ext is blank and
  20.           revert to the --- message text mode.  You might have a default
  21.           message at the end of your data/config file of say...
  22.           ---
  23.           Report not available
  24.  
  25.  
  26. Harvey's Robot allows you to produce incoming or outgoing 4d PACKETS.
  27.  
  28. Any format message systems can use this system, since it writes to
  29. in/outbound packets directly.  The system's message database format does
  30. not matter.  All that matters is that the system be able to handle
  31. FIDONET compatible packets.
  32.  
  33. You only require H.EXE, your DATAFILE (Mail List File), and an EDITOR.
  34.  
  35.               ===============================================
  36.               The simplest way to learn about your new robot,
  37.               is to read the SAMPLE-?.H files for details.
  38.               ===============================================
  39.  
  40. SAMPLE-A.H:  Is a configuration/mail list file for using a user definable
  41.              text file as the message body.  FULLY DOCUMENTED.
  42.  
  43. SAMPLE-B.H:  Is a configuration/mail list file for using the same
  44.              configuration/mail list file to contain the message body.
  45.              DOCUMENTED.  This file is the same as what is created by
  46.              entering H !.
  47.  
  48. SAMPLE-C.H:  This file is a simple small configuration/mail list file with
  49.              the bare essentials for a user definable text file as the
  50.              message body.  BARELY DOCUMENTED.
  51.  
  52. SAMPLE-D.H:  This file is a simple small configuration/mail list file with
  53.              just the bare essentials.  UNDOCUMENTED.
  54.  
  55. SAMPLE-E.H:  This file is a simple small configuration/mail list file with
  56.              just the bare essentials showing the new &FILE variable available
  57.              starting at v4.40.  UNDOCUMENTED.
  58.  
  59. There is no cost to use this system.
  60.  
  61.  
  62.                      R o b o t   C o n c e p t s . . .
  63.  
  64. Robot mail management can be a very powerful tool.  You can automate the
  65. delivery of information to your users (if you're a sysop), or many
  66. different areas, addresses, specific people etc. for one particular
  67. message or report. If your system creates your netmail in *.MSG format,
  68. there is a companion to the Robot, called CHKmsgs which allows you to
  69. control your system via netmail (see chkmsgs.doc for more info).
  70.  
  71. Probably the easiest way to implement the Robot is to set it up as a
  72. dummy point.  For example, I use my Robot to send a daily and weekly
  73. message into a local user echo called USERS249.  Since the Robot message
  74. comes from my point 1:249/114.7 into my inbound, it gets delivered to my
  75. real point 1:249/114.1 so I see it, and my users on 249/114 see it.  The
  76. Robot sends the message from 1:249/114.7 (a dummy point) into my inbound
  77. as a *.PKT file, which get's tossed into the system as if Binkley
  78. received it.  The dummy point address is in my nodelist and passworded
  79. etc as if it were a real point. It then gets redirected to me at
  80. 1:249/114.1 my real point address, and any other real points that
  81. receive that echo, and then goes to the main 249/114 message database as
  82. well.
  83.  
  84. Another example, is where I use my Robot to send myself a daily report
  85. via netmail which tells me what echos were received over the day, what
  86. disk space is free on the system, the current memory levels the system
  87. is operating at, what tic files came in, what my binkley costs were this
  88. day, etc...  The Robot sends the message from 1:249/114.7 into my
  89. inbound as a *.PKT file, which get's tossed into the system as if
  90. Binkley received it.  It then gets redirected to me at 1:249/114.1 my
  91. real point address.  The message is created using the robot and a few
  92. utilities like BINKLOG and OUT.  Binklog.exe is a free utility I wrote
  93. to give a cost summary of my binkley log.  Out.exe is a free utility I
  94. wrote to give me a detailed report of what is currently in my outbound 
  95. directory.  I do something like this...
  96.  
  97. binklog >temp.txt
  98. out    >>temp.txt
  99. dir c:\max\file\inbound>> temp.txt
  100.  
  101. ... and a few other things to create a text file that the robot sends to
  102. me as message body.
  103.  
  104.                      A d v a n c e d  S t u f f . . .
  105.  
  106. There is also an optional routing feature available now.  This is where
  107. your system must address packets to one address but send it to another.
  108. If you don't understand why you might need this, then you most likely
  109. don't.  If you create a sample.$$$ file by entering H ! you will see
  110. where to put the route optional net and node info.  The implementation
  111. of a Robot to your system can vary.  This robot has been designed to
  112. provide for maximum flexibility.  For example, I use my Robot to send
  113. some stuff directly to my NEC since I have a private node number that is
  114. not continuous ie I poll my NEC like a point.  As a result, I have to
  115. route mail.  Things don't have to be quite so complicated though.
  116.  
  117.  
  118.                      S a m p l e   R o b o t i c s
  119.  
  120. See SAMPLE.TXT, SAMPLE.REP, and REPORT.H in the original archive.
  121.  
  122.                                   ===
  123.  
  124. If you have a complex situation and need help, feel free to netmail me
  125. at 1:249/114.   I can't afford to answer mail via the postal service, but
  126. am always happy to answer netmail.
  127.  
  128.         Regards...
  129.  
  130.                  Harvey Parisien
  131.  
  132. ────────────────────────────────────────────────────────────────────────
  133. The latest version of HARVEY is available from the following nodes, or on
  134. your favorite SDS site.  HARVEY Support Sites use F/req name of: HARVEY
  135.  
  136. US      Preston Smith, Colorado Springs, Colorado  1:128/77  2400, HST/DS
  137. CANADA  Bill Cassidy, Kingston, Ontario     (NEC)  1:249/1   HST/DS
  138. UK      Cliff Jones, Lowestoft, Suffolk, England   2:254/71  9600/HST
  139.         Cliff Jones, Lowestoft, Suffolk, England   2:254/44  2400 CCITT
  140. GERMANY Peter Kaszanics, Essen, Germany            2:245/8   V32b,V42b
  141.         Peter Kaszanics, Essen, Germany            2:245/100 V32b,V42b
  142.         Peter Kaszanics, Essen, Germany            2:245/104 V32b,V42b
  143.  
  144.  
  145.   Other works by Harvey Parisien
  146.   ╓────────────────────────────────────────────────────────────────────╖
  147.   ║  Magic FREQ names for 1:249/114  (613) 389-3992  2400 Baud N81   ║
  148.   ║────────────────────────────────────────────────────────────────────║
  149.   ║     RAD = dBASE III file compatible, BBS or REMOTE online database ║
  150.   ║   HLIST = HLIST File List Compiler for files.bbs systems.          ║
  151.   ║   OMENU = oMENU the Ultimate disk Menu System                      ║
  152.   ║   POINT = PPoint - Professional Point System - easy and automatic  ║
  153.   ║  HARVEY = "Harvey the Robot" automated message mailer *.PKT format ║
  154.   ║ OFFLINE = The easy to use, QWK offline reader.                     ║
  155.   ╙────────────────────────────────────────────────────────────────────╜
  156.